feat(appium): add --releases to check out latest SDK release points - #48
Merged
Conversation
Adds an idempotent bootstrap script that installs everything run-local.sh's preflight checks for: .env (from example), appium + xcuitest/uiautomator2 drivers, Vite+ (creating the vpx symlink the installer sometimes omits), and appium/ node_modules. Documents the quick-start path and the vpx symlink caveat in the README, and points the vpx preflight errors in config.sh at bootstrap.sh instead of the raw install command.
Adds checkout-releases.sh, which checks out the newest stable release point in each downstream SDK repo before a run: the latest rel/X.Y.Z branch for rel-branch repos, or the newest semver tag for tag-only repos (expo, ios). Repo paths honor the same *_DIR overrides as run-local.sh (loaded from .env), and repos with uncommitted changes are skipped rather than clobbered. Wires it into run-all.sh via a new --releases flag that runs the checkout before iterating combos, aborting if it fails.
fadi-george
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds
appium/scripts/checkout-releases.shand wires it intorun-all.shvia a new--releasesflag. Before iterating combos, it checks out the newest stable release point in each downstream SDK repo:rel/X.Y.Zbranch — betas and non-semver excluded — thenpull --ff-only.Details
*_DIRoverrides asrun-local.sh(sourced from.env), falling back to theconfig.shdefaults under$SDK_ROOT.SKIP.run-all.sh --releasesaborts before running any combo if the checkout fails.Stacking